From 085a0e5edc1264c02fe95db963306c6df75b6a51 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Fri, 16 Feb 2001 15:04:26 +0000 Subject: [PATCH] (flyspell-get-word): Return string without properties. --- lisp/textmodes/flyspell.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index b1290c9cb8c..707315a0232 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -1221,7 +1221,7 @@ Word syntax described by `ispell-dictionary-alist' (which see)." (progn (setq start (match-beginning 0) end (point) - word (buffer-substring start end)) + word (buffer-substring-no-properties start end)) (list word start end))))) ;*---------------------------------------------------------------------*/ -- 2.30.2